home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 2 / AACD 2.iso / AACD / Programming / jikes-1.02 / src / jikes.spec < prev    next >
Encoding:
Text File  |  1999-09-02  |  1.3 KB  |  50 lines

  1. Summary: Java source to bytecode compiler
  2. %define version 1.02
  3. Name: jikes
  4. Provides: jikes
  5. Version: %{version}
  6. Release: 1
  7. Copyright: IBM Public License Version 1.0 - Jikes Compiler, http://ibm.com/research/jikes/license/license3.htm
  8. Group: Development/Languages
  9. Url: http://www.ibm.com/research/jikes 
  10. Packager: David Shields (shields@watson.ibm.com)
  11. Source: http://research.ibm.com/jikes/download/jikes-%{version}_tar.gz 
  12. Buildroot: /var/tmp/jikes-%{version}-root
  13.  
  14. Prefix: /usr
  15.  
  16. %description
  17. The IBM Research Jikes compiler translates Java source files to bytecode.
  18. Features include strict adherence to the language specification,
  19. extremely fast compile speed, and a sophisticated dependence analysis 
  20. that allows incremental compilation and automatic makefile generation.
  21.  
  22. The release of the source in December 1998 initiated one of IBM's 
  23. first efforts in the open source arena, and since that time Jikes 
  24. has been maintained and refined using the open source development 
  25. model. See http://ibm.com/research/jikes for further information. 
  26.  
  27. %prep
  28. %setup -q -n jikes
  29. cd src
  30.  
  31. %build
  32. cd src
  33. ./configure --prefix=$RPM_BUILD_ROOT
  34. make
  35.  
  36. %install
  37. rm -rf $RPM_BUILD_ROOT
  38. cd src
  39. make prefix=$RPM_BUILD_ROOT/usr install
  40.  
  41. %clean
  42. rm -rf $RPM_BUILD_ROOT
  43.  
  44. %files
  45. %defattr(-,-,root)
  46. %doc README contrib.htm jikes.htm license.htm news.htm
  47. %doc /usr/man/man1/jikes.1
  48. /usr/bin/jikes
  49.  
  50.